Component org.nuxeo.ecm.core.storage.dbs.bulk.config
In bundle org.nuxeo.ecm.core.storage.dbs
Requirements
Resolution Order
843
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
- org.nuxeo.ecm.core.storage.dbs.bulk.config--actions
- org.nuxeo.ecm.core.storage.dbs.bulk.config--streamProcessor
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.core.storage.dbs.bulk.config" version="1.0.0">
<require>org.nuxeo.runtime.stream.service</require>
<!-- ======================================================================================= -->
<!-- Actions configuration -->
<extension target="org.nuxeo.ecm.core.bulk" point="actions">
<!-- Internal -->
<action name="updateReadAcls" inputStream="bulk/updateReadAcls" bucketSize="100" batchSize="25" sequentialScroll="true" />
</extension>
<!-- Action's processor -->
<extension target="org.nuxeo.runtime.stream.service" point="streamProcessor">
<!-- Update Read ACLs processor -->
<streamProcessor name="updateReadAcls" class="org.nuxeo.ecm.core.storage.dbs.action.UpdateReadAclsAction"
defaultConcurrency="${nuxeo.bulk.action.updateReadAcls.defaultConcurrency:=1}"
defaultPartitions="${nuxeo.bulk.action.updateReadAcls.defaultPartitions:=1}">
<policy name="default" maxRetries="3" delay="500ms" maxDelay="10s" continueOnFailure="false" />
</streamProcessor>
</extension>
</component>